/* Selektor für Klassen (mehrere Tags): Punkt (.) */
.redTitle{
    color:rgb(207, 22, 22) /* Text-Farbe auf "blue" ändern */
}

/* Selektor für IDs (nur ein Tag): Hashtag (#) */
#blueBg{
    background-color: blue; /* Hintergrundfarbe auf "blue" ändern */
    color:white /* Text-Farbe auf "white" ändern */
}
body {
    background-image: url(https://thumbs.dreamstime.com/b/football-field-top-view-standard-markings-22853433.jpg);
    background-attachment: fixed;
    background-size: 120%;
    background-repeat: no-repeat;
    background-position: center center;
    color: rgb(255, 255, 255)
  }
  h1{
    text-align: center;
    font-size: 50px;
}

script { color: rgb(244, 250, 255)
    ;}